* {
	padding: 0;
	margin: 0;
}

body {
	box-sizing: border-box;
}

.ie_box {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.err_box {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-bottom: 50px;
	box-sizing: border-box;
}

.err_box img {
	width: 320px;
	height: 320px;
}

.err_box span {
	font-size: 18px;
	color: #9a9a9a;
	letter-spacing: 1px;
}

.err_box img {
	animation: show-view .7s ease forwards;
}

@keyframes show-view {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

